
@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/Work Sans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* Base Styles */
:root {
  /* Couleurs principales */
  --primary-color: #191970;
  --secondary-color: #4169e1;
  --white-color: #ffffff;
  --link-color: #1c2833;
  --black-color: #000000;
  --button-color: #5f4b8b;
  
  /* Couleurs d'interface */
  --accent-color: var(--button-color);
  --danger-color: #dc3545;
  --success-color: #28a745;
  --warning-color: #fd7e14;
  --info-color: #17a2b8;
  
  /* Couleurs de texte */
  --text-color: #343a40;
  --text-light: #6c757d;
  --text-muted: #8795a1;
  --text-white: #ffffff;
  
  /* Couleurs de fond */
  --body-bg: #f8f9fa;
  --light-bg: #f0f0f0;
  --dark-bg: #343a40;
  --card-bg: #ffffff;
  
  /* Couleurs de base */
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  
  /* Structure */
  --border-color: #dee2e6;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --border-radius-sm: 2px;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  /* Animation et typographie */
  --transition: all 0.3s ease;
  --font-family: Work Sans;
  --heading-font: Work Sans-heading;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --line-height: 1.6;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: var(--body-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  font-family: var(--heading-font, var(--font-family));
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Global Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2 {
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
}

.section-heading h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-heading.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
}

.section-subtitle {
  display: inline-block;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.bg-gray {
  background-color: var(--light-bg);
}

.bg-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.bg-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: var(--font-weight-bold);
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
}

.btn i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--button-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--button-color);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 3px solid var(--button-color);
}

.btn-outline:hover {
  background-color: var(--button-color);
  color: var(--white);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.btn-card {
  width: 100%;
  background-color: var(--button-color);
  color: var(--white);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.btn-card:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  background-color: var(--button-color);
  color: var(--white);
  padding: 1rem;
}

.btn-submit:hover {
  background-color: var(--primary-color);
}

.btn-emergency {
  background-color: var(--danger-color);
  color: var(--white);
}

.btn-emergency:hover {
  background-color: #c82333;
  color: var(--white);
}

/* Notification Bar */
.notification-bar {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 0;
}

.notification-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.emergency-notice {
  display: flex;
  align-items: center;
  gap: 10px;
}

.emergency-notice i {
  color: var(--warning-color);
  font-size: 1.125rem;
}

.emergency-notice span {
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-info {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  font-size: 0.875rem;
}

.contact-info .info-item i {
  color: var(--accent-color);
  font-size: 0.875rem;
}

.contact-info .info-item:hover {
  color: var(--accent-color);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  box-shadow: var(--box-shadow-sm);
  padding: 15px 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header.sticky {
  padding: 10px 0;
  box-shadow: var(--box-shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  max-height: 60px;
}

.header-right {
  display: flex;
  align-items: center;
}

.main-navigation {
  margin-right: 20px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 20px;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.main-menu {
  display: flex;
  align-items: center;
  margin: 0;
}

.main-menu li {
  margin: 0 10px;
  position: relative;
}

.main-menu li a {
  padding: 10px 0;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

.main-menu li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-menu li a:hover, .main-menu li a.active {
  color: var(--primary-color);
}

.main-menu li a:hover::after, .main-menu li a.active::after {
  width: 100%;
}

.phone-item {
  display: none;
}

.call-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--button-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: var(--font-weight-bold);
}

.call-button i {
  font-size: 1rem;
}

.call-button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--secondary-color);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  margin-bottom: 30px;
}

.badge-urgence {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--danger-color);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-text {
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--primary-color);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}

.badge-inner {
  text-align: center;
}

.badge-text {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
}

.badge-title {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

/* Services Preview */
.services-preview {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.service-preview-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.service-preview-item:hover {
  transform: translateY(-10px);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
}

.service-preview-item h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-preview-item p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* About Section */
.about-section {
  padding: 100px 0 70px;
  background-color: var(--white);
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: -30px;
  background-color: var(--primary-color);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}

.experience-badge .years {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.875rem;
  text-align: center;
}

.about-content {
  padding: 0 0 0 20px;
}

.about-text {
  margin-bottom: 1.5rem;
}

.about-features {
  margin-bottom: 2rem;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.about-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.125rem;
  margin-top: 4px;
}

.about-features li span {
  font-weight: 500;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.price-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  transition: var(--transition);
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.price-header {
  background-color: var(--primary-color);
  padding: 20px;
  text-align: center;
}

.price-header h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-image {
  height: 200px;
  overflow: hidden;
}

.price-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.price-card:hover .price-image img {
  transform: scale(1.1);
}

.price-content {
  border-top: 1px solid var(--border-color);
}

.price-tag {
  text-align: center;
  padding: 15px 0;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}

.price-tag .currency {
  font-size: 1.25rem;
  vertical-align: super;
  margin-right: 2px;
}

.cta-block {
  margin-top: 4rem;
  text-align: center;
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.cta-block p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: var(--white);
}

.service-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 30px;
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.75rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  opacity: 0.9;
}

.cta-content {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Info Section */
.info-section {
  padding: 80px 0;
  background-color: var(--white);
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.info-content h3 {
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.info-content h4 {
  color: var(--secondary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.info-content p {
  margin-bottom: 1rem;
}

/* Brands Section */
.brands-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.brands-slider {
  margin-top: 3rem;
}

.brand-item {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: var(--transition);
  margin-bottom: 30px;
}

.brand-item:hover {
  transform: translateY(-10px);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  padding: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
  background-color: var(--white);
  box-shadow: none;
  border-radius: var(--border-radius) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-body {
  padding: 1.25rem;
  border-top: 1px solid var(--border-color);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-form {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-control:focus {
  color: var(--text-color);
  background-color: var(--white);
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}

.file-upload {
  padding: 0.5rem 1rem;
}

/* Contact Info - Ajustement */
.contact-info {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-list {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--accent-color);
  font-size: 1.25rem;
}

.info-content h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.info-content p {
  margin-bottom: 0;
}

.info-content a {
  color: var(--button-color);
}

.info-content a:hover {
  color: var(--accent-color);
}

/* Map Container - Corrigé */
.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 2rem;
  position: relative;
  padding-bottom: 56.25%; /* Ratio 16:9 pour responsive */
  height: 0;
  box-shadow: var(--box-shadow);
  border: 3px solid var(--white);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* Zone d'intervention heading */
.contact-zone-heading {
  margin: 0 0 1.5rem;
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  text-align: center;
  font-size: 1.25rem;
  box-shadow: var(--box-shadow-sm);
}

/* Footer */
.site-footer {
  background-color: var(--secondary-color);
  color: var(--white);
}

.footer-top {
  padding: 5rem 0 3rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-widget h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  max-width: 150px;
}

.about-widget p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 0.5rem;
  font-size: 0.75rem;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info li i {
  margin-right: 1rem;
  color: var(--primary-color);
}

.footer-contact-info li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info li a:hover {
  color: var(--white);
}

.emergency-contact {
  margin-top: 2rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius);
}

.emergency-contact p {
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  text-align: center;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.copyright a {
  color: var(--accent-color);
}

.copyright a:hover {
  color: var(--white);
}

.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.go-top.active {
  opacity: 1;
  visibility: visible;
}

.go-top:hover {
  background-color: var(--button-color);
  transform: translateY(-5px);
}

/* Mobile Call Button */
.call-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--button-color);
  padding: 0.75rem;
  z-index: 999;
}

.call-mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: var(--font-weight-bold);
  gap: 0.5rem;
}

.call-mobile a:hover {
  color: var(--white);
}

/* Media Queries */
@media (max-width: 991px) {
  .notification-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  
  .contact-info {
    justify-content: center;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .main-navigation {
    margin-right: 0;
  }
  
  .main-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1001;
  }
  
  .main-menu.show {
    right: 0;
  }
  
  .main-menu li {
    margin: 0 0 15px;
    width: 100%;
  }
  
  .main-menu li a {
    display: block;
    padding: 8px 0;
  }
  
  .phone-item {
    display: block;
    margin-top: 20px;
  }
  
  .badge-urgence {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content h2 {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .image-badge {
    width: 100px;
    height: 100px;
    right: 0;
  }
  
  .badge-title {
    font-size: 1.75rem;
  }
  
  .badge-text {
    font-size: 0.75rem;
  }
  
  .experience-badge {
    width: 100px;
    height: 100px;
    right: 0;
  }
  
  .experience-badge .years {
    font-size: 2rem;
  }
  
  .experience-badge .text {
    font-size: 0.75rem;
  }
  
  .section-heading h2 {
    font-size: 1.75rem;
  }
  
  .footer-widget h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .services-preview {
    margin-top: 0;
  }
  
  .service-preview-item {
    margin-bottom: 30px;
  }
  
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .about-section {
    padding: 70px 0 40px;
  }
  
  .about-content {
    padding: 0;
  }
  
  .pricing-section, .services-section, .info-section, .brands-section, .faq-section, .contact-section {
    padding: 60px 0;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-block {
    padding: 1.5rem;
  }
  
  .cta-block p {
    font-size: 1rem;
  }
  
  .price-header h3 {
    height: auto;
  }
  
  .footer-top {
    padding: 3rem 0 1rem;
  }
  
  .footer-widget {
    text-align: center;
  }
  
  .footer-widget h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-contact-info li {
    justify-content: center;
  }
  
  .go-top {
    bottom: 80px;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content h2 {
    font-size: 1.125rem;
  }
  
  .badge-urgence {
    margin-bottom: 1rem;
  }
  
  .section-heading h2 {
    font-size: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }

  .contact-zone-heading {
    font-size: 1.1rem;
  }
  
/* Modern Contact Styles */
.contact-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  margin-bottom: 2rem;
}

.contact-card-header {
  background-color: var(--primary-color);
  padding: 1.5rem;
  text-align: center;
}

.contact-card-header h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
}

.contact-card-body {
  padding: 2rem;
  background-color: var(--secondary-color);
  color: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-info-content p {
  margin-bottom: 0;
}

.contact-info-content a {
  color: var(--white);
  transition: var(--transition);
}

.contact-info-content a:hover {
  color: var(--button-color);
  text-decoration: underline;
}

.contact-action {
  text-align: center;
  margin-top: 1rem;
}

.contact-action .btn {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.map-container {
  height: 0;
  padding-bottom: 60%;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 3px solid var(--white);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-info-item {
    align-items: center;
  }
  
  .contact-card-body {
    padding: 1.5rem;
  }
}