/**
 * ALADA PÊCHE SARL - Styles CSS personnalisés
 * Complète Bootstrap 5 avec des styles spécifiques au design
 */

/* ===== VARIABLES CSS ===== */
:root {
  /* Couleurs principales */
  --primary-blue: #0D1B2A;
  --secondary-blue: #1B263B;
  --accent-blue: #415A77;
  --light-blue: #778DA9;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  
  /* Typographie */
  --font-primary: 'Poppins', sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Espacements */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  
  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  
  /* Ombres */
  --shadow-light: 0 2px 10px rgba(13, 27, 42, 0.1);
  --shadow-medium: 0 4px 20px rgba(13, 27, 42, 0.15);
  --shadow-heavy: 0 8px 30px rgba(13, 27, 42, 0.2);
}

/* ===== STYLES GLOBAUX ===== */
* {
  box-sizing: border-box;
}

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* ===== ONBOARDING PAGE ===== */
.onboarding-body {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  min-height: 100vh;
  position: relative;
}

.onboarding-container {
  position: relative;
  z-index: 10;
}

.onboarding-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-heavy);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logo Animation */
.logo-container {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: var(--transition-smooth);
}

.logo-container.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.logo-animated {
  max-width: 150px;
  height: auto;
  transition: var(--transition-smooth);
}

/* ===== MAIN SITE STYLES ===== */

/* Header & Navigation */
.navbar-custom {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-custom.scrolled {
  background: var(--primary-blue);
  box-shadow: var(--shadow-medium);
}

.navbar-brand img {
  height: 50px;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: var(--font-weight-medium);
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  background: var(--accent-blue);
  color: var(--white)
}

/* Language Switcher */
.language-switcher .btn {
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.language-switcher .btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Language visibility classes */
.lang-en {
  display: none;
}

body.lang-english .lang-fr {
  display: none;
}

body.lang-english .lang-en {
  display: inline;
}

/* Welcome Screen Animations */
.welcome-screen {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  transition: all 0.5s ease;
}

.welcome-animation-card {
  color: white;
}

.welcome-logo-container {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.welcome-logo-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.welcome-logo-animated {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  animation: logoFloat 3s ease-in-out infinite;
}

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

.welcome-messages {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.welcome-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s ease;
  font-size: 2.5rem;
  font-weight: 300;
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.welcome-message strong {
  font-weight: 700;
  color: var(--accent-blue);
  text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.welcome-message.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.welcome-message.hide {
  opacity: 0;
  transform: translateY(-30px) scale(1.05);
}

.loading-animation {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.loading-animation.show {
  opacity: 1;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.loading-dots span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: loadingDot 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loadingDot {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .welcome-message {
    font-size: 1.8rem;
  }
  
  .welcome-logo-animated {
    max-width: 150px;
  }
  
  .welcome-messages {
    height: 100px;
  }
}


/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/Image-Section-Accueil.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

/* Hero Language */
.hero-language {
  text-align: right;
  margin-bottom: 2rem;
}

.language-text {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
}

/* Hero Logo */
.hero-logo {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-logo-img {
  max-width: 200px;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 1s ease 0.3s forwards;
}

.hero-logo-img-large {
  max-width: 300px;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 1s ease 0.3s forwards;
}

/* Hero Main Title */
.hero-main-title {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
}

/* Hero CTA */
.hero-cta {
  text-align: center;
}

.btn-hero-cta {
  background: var(--white);
  color: var(--dark-gray);
  border: 2px solid var(--white);
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-medium);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.9s forwards;
}

.btn-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-gray);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Sections communes */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  text-align: center;
  margin-bottom: 3rem;
}

/* About Section */
.about {
  background: var(--white);
  padding: 2rem 0;
  position: relative;
  margin: -60px auto 0 auto;
  width: 90%;
  max-width: 1200px;
  z-index: 10;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-card {
  background: transparent;
  padding: 1.5rem 1rem;
  border-radius: 0;
  box-shadow: none;
  transition: none;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
  border: none;
  position: relative;
  overflow: visible;
}

.about-card::before {
  display: none;
}

.about-card:hover {
  transform: none;
  box-shadow: none;
}

.about-card-title {
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-gray);
  margin-bottom: 1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.about-card-text {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
  text-align: justify;
  flex-grow: 1;
  margin: 0;
}

/* About Company Section */
.about-company {
  background: #e8ecf0;
  background-image: url('../assets/fish.jpg');
  background-size: 50% auto;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  padding: 5rem 0;
  margin-top: 80px;
}

.about-company::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(232, 236, 240, 0.85);
  z-index: 1;
}

.about-company .container {
  position: relative;
  z-index: 2;
}

.about-company-content {
  padding-right: 3rem;
}

.about-company-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-normal);
  color: #182C41;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: left;
}

.about-company-title strong {
  color: #182C41;
  font-weight: var(--font-weight-bold);
}

.about-company-text {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: justify;
}

.about-company-subtitle {
  font-size: 1.6rem;
  font-weight: var(--font-weight-normal);
  color: #182C41;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-company-subtitle strong {
  font-weight: var(--font-weight-bold);
  color: #182C41;
}

.about-company-description {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 1rem;
}

.about-company-image {
  padding-left: 2rem;
}

.about-company-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .about-company-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .about-company-image {
    padding-left: 0;
  }
  
  .about-company-title {
    font-size: 2.2rem;
  }
}

/* Services Section */
.services {
  background: var(--white);
  padding: 3rem 0;
}

.services-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.services-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.services-content {
  text-align: right;
}

.services-title {
  font-size: 24px;
  font-family: 'Poppins', sans-serif;
  text-align: right;
  color: #182C41; /* Nouvelle couleur */
  margin-right: 20px;
}

.services-list {
  text-align: right;
  padding-right: 20px;
  list-style: none;
}

.services-list li {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.mission-box {
  text-align: right;
  margin-right: 20px;
  margin-left: auto;
  font-family: 'Poppins', sans-serif;
}

.services-list li {
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 0.6rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.services-list li::before {
  content: "•";
  color: var(--primary-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.mission-vision {
  margin-top: 2rem;
  position: relative;
}

.mission,
.vision {
  margin-bottom: 1rem;
}

.mission-title,
.vision-title {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: 0;
  display: inline;
}

.mission-text,
.vision-text {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.5;
  display: inline;
  margin-left: 0.3rem;
}

.mission-box strong {
  color: #182C41; /* Nouvelle couleur */
  font-weight: 600;
}

.mission-box p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.6;
  background: rgba(13, 27, 42, 0.03);
  border-radius: 8px;
  border-left: 4px solid var(--accent-blue);
}

.fish-logo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 5;
}

.fish-logo-img {
  max-width: 200px;
  height: auto;
  opacity: 0.95;
}

/* Services Section - New Design */
.services-new {
  background: #f8f9fa;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.services-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.05) 0%, rgba(27, 38, 59, 0.05) 100%);
  z-index: 0;
}

.services-new .container {
  position: relative;
  z-index: 1;
}

.services-new-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  max-height: 500px;
}

.services-new-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.services-new-image-container:hover .services-new-image {
  transform: scale(1.03);
}

.services-new-content {
  padding: 2rem 0 2rem 3rem;
}

.services-new-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #182C41; /* Nouvelle couleur */
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.services-new-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-blue);
  border-radius: 2px;
}

.services-new-list {
  list-style: none;
  padding: 0;
}

.services-section .list-unstyled li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
  color: #333;
}

.services-section .list-unstyled li:before {
  content: '•';
  color: var(--accent-blue);
  font-weight: bold;
  position: absolute;
  left: -1rem;
  font-size: 1.5rem;
  line-height: 1;
}

.services-section .list-unstyled li:last-child {
  margin-bottom: 0;
}

.services-new-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.services-new-list li:hover {
  color: var(--primary-blue);
  padding-left: 3rem;
}

.services-new-list li:hover::before {
  background: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
  .services-new {
    padding: 4rem 0;
  }
  
  .services-new-content {
    padding: 2rem 0 0 0;
  }
  
  .services-new-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .services-new-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .services-new-list li {
    font-size: 1rem;
    padding: 0.7rem 0 0.7rem 2.2rem;
  }
}

@media (max-width: 576px) {
  .services-new {
    padding: 3rem 0;
  }
  
  .services-new-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .services-new-list li {
    font-size: 0.95rem;
    padding: 0.6rem 0 0.6rem 2rem;
  }
  
  .services-new-list li::before {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}

/* Old Services Design - Keeping for reference */
.services-design-match {
  background: #f8f9fa;
  padding: 4rem 0;
  border-top: 4px solid #4A90E2;
}

.services-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Left Column Styles */
.left-content {
  padding-right: 2rem;
}

.services-image-container {
  margin-bottom: 2rem;
}

.services-image-design {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-section,
.vision-section {
  margin-bottom: 1.5rem;
}

.mission-title,
.vision-title {
  font-size: 1.1rem;
  color: #2C5282;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.mission-text,
.vision-text {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* Right Column Styles */
.right-content {
  padding-left: 2rem;
  position: relative;
}

.services-title-design {
  font-size: 2rem;
  color: #182C41; /* Nouvelle couleur */
  font-weight: 600;
  margin-bottom: 2rem;
}

.services-list-design {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item-design {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.bullet-design {
  color: #4A90E2;
  font-size: 1.2rem;
  margin-right: 0.8rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Fish Logo Bottom Right */
.fish-logo-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.fish-logo-design {
  width: 180px;
  height: 90px;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 991px) {
  .left-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .right-content {
    padding-left: 0;
  }
  
  .services-title-design {
    text-align: center;
    font-size: 1.8rem;
  }
  
  .fish-logo-bottom-right {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .fish-logo-design {
    width: 150px;
    height: 75px;
  }
}

@media (max-width: 768px) {
  .services-design-match {
    padding: 3rem 0;
  }
  
  .services-layout {
    padding: 0 1rem;
  }
  
  .services-title-design {
    font-size: 1.6rem;
  }
  
  .services-image-design {
    max-width: 100%;
  }
  
  .service-item-design {
    font-size: 0.95rem;
  }
  
  .mission-text,
  .vision-text {
    font-size: 0.9rem;
  }
  
  .fish-logo-design {
    width: 120px;
    height: 60px;
  }
}

/* Contact Section */
.contact {
  background: var(--light-gray);
  padding: 4rem 0;
}

.contact-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-logo-img {
  max-width: 200px;
  height: auto;
}

.contact-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.contact-details {
  font-size: 1.1rem;
  color: var(--dark-gray);
}

.contact-phone,
.contact-email,
.contact-address {
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-blue);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
  transition: var(--transition-fast);
}

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

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: var(--transition-smooth);
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1000;
  box-shadow: var(--shadow-medium);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-blue);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  
  .onboarding-card {
    padding: 2rem 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-hero-primary {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .onboarding-card {
    padding: 1.5rem 1rem;
  }
  
  .language-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Services Section */
.services-section {
  background-color: #f8f9fa;
  padding: 10rem 0; /* Augmentation du padding vertical */
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 80vh; /* Hauteur minimale pour occuper l'espace */
  display: flex;
  align-items: center;
}

.services-section .container {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 5rem 4rem;
  position: relative;
  z-index: 1;
  margin: 2rem auto;
  max-width: 1400px;
  width: 100%;
  flex: 1;
}

.services-section h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.services-section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-blue);
  border-radius: 2px;
}

/* Conteneur de l'image - Style principal */
.service-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 280px; /* Hauteur fixe pour une forme horizontale */
  width: 100%;
  margin: 2rem 0;
}

.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 20px;
}

.service-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-image-container:hover img {
  transform: scale(1.03);
}

.services-section .list-unstyled {
  padding-left: 1.5rem;
}

.services-section .list-unstyled li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
  color: #333;
}

.services-section .list-unstyled li:before {
  content: '•';
  color: var(--accent-blue);
  font-weight: bold;
  position: absolute;
  left: -1rem;
  font-size: 1.5rem;
  line-height: 1;
}

.services-section .mission-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: rgba(13, 27, 42, 0.03);
  border-radius: 8px;
  border-left: 4px solid var(--accent-blue);
}

.fish-logo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  max-width: 160px;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-section .container {
    max-width: 95%;
  }
}

@media (max-width: 991px) {
  .services-section {
    padding: 4rem 0;
  }
  
  .services-section .container {
    padding: 3rem 2rem;
    margin: 1rem;
  }
  
  .services-section h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .services-section h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .services-section .list-unstyled li {
    font-size: 1rem;
  }
  
  .fish-logo {
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .services-section .container {
    padding: 2rem 1.5rem;
  }
  
  .services-section h2 {
    font-size: 1.8rem;
  }
  
  .services-section .mission-text {
    font-size: 1rem;
    padding: 1rem;
    margin: 1.5rem 0 0;
  }
  
  .fish-logo {
    max-width: 100px;
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 3rem 0;
  }
  
  .services-section .container {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  
  .services-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .services-section .list-unstyled li {
    font-size: 0.95rem;
    padding-left: 0.8rem;
  }
  
  .services-section .list-unstyled li:before {
    left: -0.8rem;
    font-size: 1.3rem;
  }
}

/* Mission & Vision */
.mission-vision {
  margin-top: 2rem;
  position: relative;
}

.mission,
.vision {
  margin-bottom: 1rem;
}

.mission-title,
.vision-title {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: 0;
  display: inline;
}

.mission-text,
.vision-text {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.5;
  display: inline;
  margin-left: 0.3rem;
}

/* Logo poisson */
.fish-logo {
  position: absolute;
  bottom: 10px;
  right: 20px;
  z-index: 5;
}

.fish-logo-img {
  max-width: 200px;
  height: auto;
  opacity: 0.95;
}

/* Styles pour la section Services */
.services-section {
  padding: 30px 0;
  background-color: #ffffff;
  position: relative;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.services-section .container {
  position: relative;
  z-index: 1;
  border-radius: 15px;
}

/* Styles du titre */
.services-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #182C41;
  margin: 0 0 2rem 0;
  padding-bottom: 1rem;
  position: relative;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  width: 100%;
  border-bottom: 2px solid #eee;
}

/* Suppression du trait sous le titre */
.services-title::after,
.services-title::before {
  display: none;
}

/* Colonne du contenu des services */
.services-section .col-lg-6 {
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

/* Colonne de l'image */
.services-section .col-lg-6:first-child {
  padding-right: 2rem;
}

/* Colonne du contenu */
.services-section .col-lg-6:last-child {
  padding-left: 2rem;
  border-left: 1px solid #eee;
}

/* Styles de la liste des services */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  text-align: left; /* Aligné à gauche */
}

.services-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.8rem; /* Padding à gauche pour la puce */
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.services-list li:last-child {
  border-bottom: none;
}

.services-list li:hover {
  color: var(--primary-blue);
  padding-left: 2.2rem; /* Effet de décalage au survol */
}

.services-list li::before {
  content: '•';
  position: absolute;
  left: 0; /* Positionné à gauche */
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-blue);
  font-size: 1.2rem;
  opacity: 1;
  transition: all 0.3s ease;
}

.services-list li:hover::before {
  transform: translateY(-50%) scale(1.2);
  color: var(--primary-blue);
}

/* Logo des services */
.services-logo-container {
  width: 100%;
  text-align: right;
  margin-top: 2rem;
  padding: 1rem 0;
  position: relative;
  border-top: 1px solid #eee;
  display: none; /* Caché par défaut */
}

/* Afficher le logo uniquement sur les grands écrans */
@media (min-width: 992px) {
  .services-logo-container {
    display: block;
  }
}

.services-logo {
  width: 280px;
  height: auto;
  display: inline-block;
  opacity: 1;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.services-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Responsive */
@media (max-width: 991.98px) {
  /* Réorganisation pour mobile */
  .services-section .row {
    display: flex;
    flex-direction: column-reverse;
  }
  
  /* Ajustement des marges et espacements */
  .services-section .col-lg-6 {
    padding: 0 !important;
    width: 100%;
  }
  
  /* Suppression de la bordure de séparation */
  .services-section .col-lg-6:last-child {
    border-left: none;
    margin-bottom: 2rem;
  }
  
  /* Ajustement de l'image */
  .service-image-container {
    margin-top: 2rem;
  }
  
  /* Ajustement du logo */
  /* La règle .services-logo-container est déjà définie plus haut */
  
  .services-title {
    font-size: 1.8rem;
    margin-top: 0;
    text-align: center;
    padding-right: 0;
  }
  
  .services-title::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .services-list {
    text-align: center;
    margin-right: 0;
  }
  
  .services-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
  }
  
  .mission-box {
    margin: 1.5rem auto 0;
    text-align: center;
    border-right: none;
    border-left: 3px solid var(--accent-blue);
    border-radius: 0 6px 6px 0;
  }
  
  .service-image-container {
    margin-top: 0;
  }
}

/* Nouvelle Section Contact */
.contact-section-new {
  padding: 80px 0;
  background-color: #fff;
  color: #284C68;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eee;
}

.contact-left-column {
  position: relative;
}

.contact-logo-new {
  max-width: 350px;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
  margin: 0;
  text-align: left;
}

.contact-logo-new:hover {
  transform: scale(1.05);
}

.contact-card {
  background: transparent;
  border: none;
  border-bottom: 3px solid #284C68;
  box-shadow: none;
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.contact-card .contact-logo-new {
  margin: 0 auto 20px auto;
  display: block;
  width: 300px;
}

.contact-card .social-icons-new {
  justify-content: center;
  margin-top: 0;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.social-icons-new {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  padding-left: 0;
  justify-content: flex-start;
  list-style: none;
  width: 100%;
}

.social-icons-new .social-icon-new {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; /* Largeur calculée pour 4 icônes dans 179px */
  height: 29px;
  color: #284C68;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-decoration: none;
  background: none;
  border-radius: 4px;
  padding: 5px;
}

.social-icons-new .social-icon-new:hover {
  background-color: rgba(40, 76, 104, 0.1);
  color: #284C68;
  transform: translateY(-3px);
}

.contact-info {
  padding-left: 2rem;
  border-bottom: 3px solid #284C68;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-top: 5rem;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #284C68;
  letter-spacing: 2px;
}

.contact-details p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #284C68;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-phone {
  font-weight: 400;
}

.contact-email {
  font-weight: 400;
}

.contact-address {
  font-weight: 400;
}

.contact-title-new {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eee;
  color: #284C68;
}

.contact-details-new .contact-item-new {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.contact-details-new .contact-item-new:hover {
  transform: translateX(5px);
}

.contact-details-new .contact-item-new i {
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
  min-width: 25px;
  color: #284C68;
}

.contact-details-new .contact-item-new span {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #284C68;
}

.contact-details-new .contact-item-new p {
  margin: 0;
  font-size: 1rem;
  color: #284C68;
}

/* Responsive Design pour la section contact */
@media (min-width: 992px) {
  .contact-section-new .col-md-6:first-child {
    display: flex;
    align-items: center;
  }
  
  .contact-card {
    margin: 0;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 2rem;
  }
}

@media (max-width: 991.98px) {
  .contact-section-new .row {
    flex-direction: column;
  }
  
  .contact-section-new .col-md-6:first-child {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .contact-card {
    margin: 0 auto;
    max-width: 350px;
  }

  .contact-info {
    text-align: center;
    padding-left: 0;
    margin-top: 0;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  .contact-details p {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .contact-section-new {
    padding: 50px 0;
  }
  
  .contact-card {
    max-width: 320px;
    padding: 25px;
  }
  
  .contact-card .contact-logo-new {
    width: 280px;
    max-width: 280px;
  }
  
  .contact-card .social-icons-new {
    width: 280px;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
  
  .contact-details p {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .contact-section-new {
    padding: 40px 0;
  }
  
  .contact-card {
    max-width: 300px;
    padding: 20px;
  }
  
  .contact-card .contact-logo-new {
    width: 250px;
    max-width: 250px;
  }
  
  .contact-card .social-icons-new {
    width: 250px;
    gap: 12px;
  }
  
  .contact-title {
    font-size: 1.4rem;
  }
  
  .contact-details p {
    font-size: 14px;
  }
  
  .social-icons-new .social-icon-new {
    width: 35px;
    height: 26px;
    font-size: 1.1rem;
  }
}


/* Section Engagement Qualité */
.engagement-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/Image-Section-EngagementQualite.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
  margin: 60px 0;
}

.engagement-section .container {
  position: relative;
  z-index: 2;
}

.engagement-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.engagement-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
  max-width: 90%;
}

.engagement-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-blue);
  border-radius: 2px;
}

.engagement-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.engagement-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.engagement-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive pour la section Engagement */
@media (max-width: 991.98px) {
  .engagement-section {
    padding: 60px 0;
    background-attachment: scroll;
  }
  
  .engagement-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .engagement-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .engagement-list {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .engagement-section {
    padding: 40px 0;
  }
  
  .engagement-title {
    font-size: 1.5rem;
  }
  
  .engagement-list li {
    font-size: 1rem;
    padding-left: 25px;
  }
}