/* CSS spécifique à la page Contact */

/* Styles pour les sections */
.section {
  padding: 80px 0;
}

.section-content {
  display: flex;
  align-items: center;
}

.section-left,
.section-right {
  flex: 1;
}

/* Header */
.header {
  background-color: white;
  border-bottom: 1px solid #ECECEC;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
}

.header-nav-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  text-decoration: none;
}

.nav-tabs {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-tabs li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-tabs li a:hover {
  color: #6E08A7;
}

.nav-tabs li a.active {
  color: #6E08A7;
  border-bottom: 2px solid #6E08A7;
  padding-bottom: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language dropdown sections */
.desktop-language-dropdown {
  display: block;
}

.mobile-language-item {
  display: none;
}

.mobile-menu-language {
  margin-top: 20px;
}

/* Styles pour les boutons */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 6px 6px 16px 0px rgba(0, 0, 0, 0.10);
}

.btn-primary {
  background-color: #6E08A7;
  color: white;
}

.btn-primary:hover {
  background-color: #5a077a;
}

.btn-success {
  background-color: #008F4A;
  color: white;
}

.btn-success:hover {
  background-color: #218838;
}

.btn-outline {
  background-color: white;
  color: #201E21;
  border: 2px solid #6E08A7;
}

/* Styles pour le menu mobile */
.hamburger-menu {
  display: none;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #201E21;
  transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Menu mobile overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transition: left 0.3s ease;
}

.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECECEC;
}

.mobile-logo img {
  height: 32px;
  width: auto;
}

.close-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 32px;
  height: 32px;
}

.close-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #201E21;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  flex: 1;
}

.mobile-nav-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-tabs li {
  margin-bottom: 0;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  color: #201E21;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #F5F5F5;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #6E08A7;
}

.mobile-nav-link.active {
  color: #6E08A7;
  border-bottom: 2px solid #6E08A7;
}

.mobile-menu-actions {
  padding-top: 20px;
  border-top: 1px solid #ECECEC;
}

.mobile-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* Première section - Hero Contact */
.contact-hero-section {
  background-color: #6E08A7;
  color: white;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

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

.contact-hero-title {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 66px;
}

.contact-hero-description {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.contact-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 8px;
}

.contact-feature-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.contact-feature-label {
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-align: center;
}

/* Footer */
.footer {
  background-image: url(/assets/bg-footer-82be0078712301466f7222e5db49ebc0e53943876848e23d5ea097a821b1e111.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 52px 0;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.footer-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.footer-blocks {
  display: flex;
  gap: 60px;
}

.footer-block {
  flex: 1;
}

.footer-block-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

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

.footer-links li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
  opacity: 0.7;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: white;
}

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

.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-contacts li span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 0 10px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 0;
}

/* Responsive */

/* Styles pour écrans moyens (tablettes) */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Container et espacement */
  .container {
    padding: 0 40px;
  }
  
  /* Header tablette */
  .header-content {
    padding: 16px 0;
  }
  
  .header-nav-section {
    gap: 20px;
  }
  
  .nav-tabs {
    gap: 24px;
  }
  
  .nav-tabs li a {
    font-size: 15px;
    padding: 8px 12px;
    transition: all 0.3s ease;
  }
  
  .nav-tabs li a:hover {
    background-color: rgba(110, 8, 167, 0.1);
  }
  
  /* Optimisations tactiles pour les boutons */
  .btn {
    min-height: 44px;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Section Hero Contact tablette */
  .contact-hero-section {
    padding: 80px 0;
  }
  
  .contact-hero-title {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 16px;
  }
  
  .contact-hero-description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 32px;
  }
  
  .contact-features {
    gap: 40px;
    margin-top: 32px;
  }
  
  .contact-feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .contact-feature-icon img {
    width: 28px;
    height: 28px;
  }
  
  .contact-feature-label {
    font-size: 15px;
  }
  
  /* Footer tablette */
  .footer {
    padding: 60px 0;
  }
  
  .footer-content {
    margin-bottom: 32px;
  }
  
  .footer-blocks {
    gap: 50px;
  }
  
  .footer-block-title {
    font-size: 15px;
    margin-bottom: 18px;
  }
  
  .footer-links li,
  .footer-links li a {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .footer-contacts li {
    margin-bottom: 14px;
  }
  
  .footer-contacts li span {
    font-size: 13px;
  }
  
  .copyright {
    font-size: 13px;
  }
  
  /* Optimisations pour les cartes interactives */
  .contact-feature {
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .contact-feature:hover {
    transform: translateY(-4px);
  }
  
  /* Amélioration de la lisibilité */
  .contact-hero-description {
    line-height: 1.6;
  }
  
  /* Optimisations pour les icônes */
  .contact-feature-icon {
    transition: all 0.3s ease;
  }
  
  .contact-feature:hover .contact-feature-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .container {
      padding: 0 40px;
    }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  /* Header mobile */
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  
  .header-nav-section {
    display: none;
  }
  
  .hamburger-menu {
    display: block;
  }
  
  .nav-tabs {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-tabs li {
    margin-bottom: 10px;
  }
  
  .mobile-language-item {
    margin-top: 10px;
    width: 100%;
    text-align: left;
  }
  
  /* Language dropdown mobile visibility */
  .desktop-language-dropdown {
    display: none;
  }
  
  .mobile-language-item {
    display: block;
  }
  
  /* Styles pour le dropdown de langue sur mobile - dans la navigation */
  .mobile-language-item .header-dropdown {
    display: inline-block;
  }
  
  .mobile-language-item .dropdown-btn {
    background-color: #F8F9FA;
    border: 1px solid #ECECEC;
    padding: 8px 12px;
    font-size: 14px;
    min-width: 60px;
    justify-content: center;
    border-radius: 6px;
  }
  
  .mobile-language-item .dropdown-menu {
    right: auto;
    left: 0;
    transform: translateY(-10px);
    min-width: 80px;
  }
  
  .mobile-language-item .dropdown-menu.active {
    transform: translateY(0);
  }
  
  .mobile-menu-language-item {
    border-bottom: 1px solid #F5F5F5;
    padding: 16px 0;
    text-align: left;
  }
  
  .mobile-menu-language .header-dropdown {
    display: inline-block;
  }
  
  .mobile-menu-language .dropdown-btn {
    background-color: #F8F9FA;
    border: 1px solid #ECECEC;
    padding: 12px 16px;
    font-size: 16px;
    min-width: 80px;
    justify-content: center;
    color: #201E21;
    border-radius: 8px;
  }
  
  .mobile-menu-language .dropdown-menu {
    right: auto;
    left: 0;
    transform: translateY(-10px);
    min-width: 100px;
  }
  
  .mobile-menu-language .dropdown-menu.active {
    transform: translateY(0);
  }
  
  /* Section Hero Contact mobile */
  .contact-hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .contact-hero-content {
    padding: 0 20px;
  }
  
  .contact-hero-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 20px;
  }
  
  .contact-hero-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
  }
  
  .contact-features {
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
  }
  
  .contact-feature {
    flex-direction: row;
    gap: 16px;
  }
  
  .contact-feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }
  
  .contact-feature-icon img {
    width: 24px;
    height: 24px;
  }
  
  .contact-feature-label {
    font-size: 16px;
    text-align: left;
  }
  
  /* Footer mobile */
  .footer {
    padding: 40px 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
  }
  
  .footer-blocks {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  
  .footer-block {
    text-align: center;
  }
  
  .footer-block-title {
    margin-bottom: 16px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-contacts li {
    margin-bottom: 12px;
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
    gap: 16px;
  }
}

/* Optimisations pour très petits écrans */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .contact-hero-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .contact-hero-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .contact-features {
    gap: 24px;
  }
  
  .contact-feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-feature-icon img {
    width: 20px;
    height: 20px;
  }
  
  .contact-feature-label {
    font-size: 14px;
  }
  
  .mobile-menu-content {
    width: 90%;
  }
}

/* Deuxième section - Formulaire de contact */
.contact-form-section {
  background-color: transparent;
  padding: 100px 0;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-form-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 56px;
  color: #000;
}

.contact-form-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #302D32;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border: 1px solid #ECECEC;
  border-radius: 12px;
  padding: 50px 30px 30px 30px;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  flex: 1;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group {
  position: relative;
}

.form-label {
  position: absolute;
  top: -12px;
  left: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #94A3B8;
  line-height: 20px;
  background-color: white;
  padding: 0 4px;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.form-input:focus + .form-label,
.form-textarea:focus + .form-label {
  color: #6E08A7;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #DADEE0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #201E21;
  background-color: white;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-input:focus {
  outline: none;
  border-color: #6E08A7;
  box-shadow: 0 0 0 3px rgba(110, 8, 167, 0.1);
}

/* Styles pour le select */
.form-input[type="select"],
select.form-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Style pour les champs optionnels */
.form-group:has(select[id="source"]) .form-label::after {
  content: " (optionnel)";
  font-size: 12px;
  color: #6C757D;
  font-weight: 400;
}

.form-input[type="select"]:focus,
select.form-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236E08A7' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-textarea::placeholder {
  color: #706D72;
}

/* Checkbox personnalisé */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  color: #302D32;
  line-height: 20px;
}

.form-checkbox {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #DADEE0;
  border-radius: 4px;
  background-color: white;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.form-checkbox:checked + .checkmark {
  background-color: #6E08A7;
  border-color: #6E08A7;
}

.form-checkbox:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  flex: 1;
}

.link {
  color: #6E08A7;
  text-decoration: none;
  font-weight: 600;
}

.link:hover {
  text-decoration: underline;
}

/* Bouton de soumission */
.btn-submit {
  background-color: #6E08A7;
  color: white;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  border-radius: 8px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Spinner de chargement */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive pour le formulaire */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-form-section {
    padding: 80px 0;
  }
  
  .contact-form-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .contact-form-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .contact-form-header {
    margin-bottom: 50px;
  }
  
  .contact-form-container {
    padding: 40px;
  }
  
  .form-row {
    gap: 20px;
  }
  
  .form-input,
  .form-textarea {
    padding: 14px 16px;
    font-size: 16px;
  }
  
  .btn-submit {
    padding: 18px 24px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }
  
  .contact-form-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .contact-form-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .contact-form-header {
    margin-bottom: 40px;
  }
  
  .contact-form-container {
    padding: 24px;
    margin: 0 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .form-group {
    width: 100%;
  }
  
  .form-input,
  .form-textarea {
    padding: 14px 16px;
    font-size: 16px;
  }
  
  .checkbox-container {
    font-size: 13px;
    line-height: 18px;
  }
  
  .btn-submit {
    padding: 16px 24px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 20px;
    margin: 0 16px;
  }
  
  .contact-form-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .form-input,
  .form-textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
  
  .checkbox-container {
    font-size: 12px;
    line-height: 16px;
  }
}

/* Troisième section - Nos bureaux */
.offices-section {
  background-color: white;
  padding: 100px 0;
}

.offices-header {
  text-align: center;
  margin-bottom: 80px;
}

.offices-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 56px;
  color: #000;
}

.offices-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #302D32;
  max-width: 600px;
  margin: 0 auto;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.office-block {
  border: 1px solid #CFCED0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.office-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.office-image-file {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}



.office-info {
  padding: 24px 16px;
  background-color: white;
}

.office-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.office-info-item:last-child {
  margin-bottom: 0;
}

.office-info-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-info-label {
  font-size: 14px;
  font-weight: 400;
  color: #201E21;
  line-height: 24px;
  flex: 1;
}

/* Responsive pour la section Nos bureaux */
@media (min-width: 769px) and (max-width: 1024px) {
  .offices-section {
    padding: 80px 0;
  }
  
  .offices-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .offices-description {
    font-size: 18px;
    line-height: 28px;
  }
  
  .offices-header {
    margin-bottom: 50px;
  }
  
  .offices-grid {
    gap: 32px;
  }
  
  .office-info {
    padding: 28px;
  }
  
  .office-info-item {
    margin-bottom: 18px;
  }
  
  .office-info-label {
    font-size: 15px;
    line-height: 22px;
  }
}

@media (max-width: 768px) {
  .offices-section {
    padding: 60px 0;
  }
  
  .offices-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .offices-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .offices-header {
    margin-bottom: 40px;
  }
  
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .office-image {
    height: 180px;
  }
  
  .office-info {
    padding: 24px;
  }
  
  .office-info-item {
    margin-bottom: 16px;
  }
  
  .office-info-label {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .offices-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .office-image {
    height: 160px;
  }
  
  .office-info {
    padding: 20px;
  }
  
  .office-info-item {
    gap: 12px;
    margin-bottom: 14px;
  }
  
  .office-info-icon {
    width: 20px;
    height: 20px;
  }
  
  .office-info-icon img {
    width: 16px;
    height: 16px;
  }
  
  .office-info-label {
    font-size: 13px;
    line-height: 18px;
  }
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  font-family: inherit;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  background-color: #008F4A;
  color: white;
  border-left: 4px solid #006B3A;
}

.notification.error {
  background-color: #DC3545;
  color: white;
  border-left: 4px solid #BD2130;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-icon {
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}

.notification-message {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive pour les notifications */
@media (max-width: 768px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100%);
  }
  
  .notification.show {
    transform: translateY(0);
  }
}
