/* ================================
   LOCATION BENNE PACA - STYLES
   Template professionnel
================================ */

/* ================================
   VARIABLES & RESET
================================ */
:root {
  /* Couleurs principales */
  --primary: #f77f00;
  --primary-dark: #e06f00;
  --primary-light: #ff9f40;
  --secondary: #1a2744;
  --secondary-light: #2d3e5f;
  --dark: #0f1729;
  --white: #ffffff;
  --light: #fdf3e5;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --text: #333333;
  --text-light: #666666;

  /* Typographie */
  --font-heading: "Gabarito", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espacements */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ================================
   TYPOGRAPHY
================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}
h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}
h4 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.highlight {
  color: var(--primary);
}

.text-center {
  text-align: center;
}
.text-light {
  color: rgba(255, 255, 255, 0.9);
}

/* ================================
   LAYOUT
================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xxl) 0;
}

.section-title {
  margin-bottom: var(--spacing-lg);
}

.section-text {
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--gray-200);
  color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--gray-300);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* ================================
   HEADER
================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem var(--spacing-md);
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

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

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: block;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--secondary);
}

.nav-item > a:hover {
  color: var(--primary);
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: var(--transition);
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: var(--light);
  color: var(--primary);
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

.header-phone:hover {
  background: var(--primary-dark);
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--gray-200);
}

.mobile-close {
  position: relative;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}

.mobile-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav ul {
  padding: var(--spacing-md);
}

.mobile-nav li a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.1rem;
  color: var(--secondary);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================================
   HERO SECTION
================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80")
    center/cover no-repeat;
  opacity: 0.15;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
  min-height: calc(100vh - 80px);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(247, 127, 0, 0.2);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-md);
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.hero-wave svg path {
  fill: var(--light);
}

/* ================================
   ESTIMATOR CARD
================================ */
.estimator-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-xl);
}

.estimator-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.estimator-title {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.estimator-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.estimator-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.estimator-progress {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  transition: width 0.5s ease;
}

.estimator-questions {
  min-height: 180px;
}

.question {
  display: none;
}

.question.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.question-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--secondary);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.options-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.option-btn {
  padding: 0.875rem 1rem;
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.option-btn:hover {
  background: var(--light);
  border-color: var(--primary);
}

.option-btn.selected {
  background: var(--light);
  border-color: var(--primary);
  color: var(--primary);
}

.estimator-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: var(--spacing-md);
}

.estimator-nav .btn {
  flex: 1;
}

.estimator-result {
  display: none;
  text-align: center;
}

.estimator-result.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.result-price {
  background: var(--light);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.result-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.result-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.result-promo {
  background: rgba(247, 127, 0, 0.1);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
}

.result-promo .btn {
  margin-top: var(--spacing-sm);
}

.result-details {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

/* ================================
   SECTION TARIFS
================================ */
.section-tarifs {
  background: var(--light);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

@media (min-width: 992px) {
  .tarifs-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.tarifs-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--spacing-md) 0;
}

.tarifs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tarifs-table th,
.tarifs-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.tarifs-table th {
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
}

.tarifs-table tr:hover {
  background: var(--gray-100);
}

.tarifs-table tr:last-child td {
  border-bottom: none;
}

/* ================================
   SECTION FACTORS
================================ */
.section-factors {
  background: var(--white);
}

.factors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

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

@media (min-width: 1024px) {
  .factors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.factor-card {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

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

.factor-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.factor-title {
  margin-bottom: var(--spacing-sm);
  color: var(--secondary);
}

.factor-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ================================
   SECTION CLIENTS
================================ */
.section-clients {
  background: var(--light);
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

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

.client-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.client-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.client-content {
  padding: var(--spacing-lg);
}

.client-title {
  margin-bottom: var(--spacing-sm);
  color: var(--primary);
}

.client-list {
  margin: var(--spacing-md) 0;
}

.client-list li {
  padding: 0.5rem 0;
  color: var(--text);
}

.client-note {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: var(--spacing-sm);
  background: var(--light);
  border-radius: var(--radius-sm);
}

/* ================================
   SECTION TYPES DE BENNES
================================ */
.section-types {
  padding: 0;
}

.types-wrapper {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .types-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.types-image {
  min-height: 400px;
  background: url("https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?w=800&q=80")
    center/cover no-repeat;
}

.types-content {
  background: var(--secondary);
  padding: var(--spacing-xxl) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.types-content .section-title {
  color: var(--white);
}

.types-list {
  margin: var(--spacing-lg) 0;
}

.types-list li {
  display: flex;
  gap: var(--spacing-sm);
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.list-icon {
  color: var(--primary);
  font-weight: bold;
}

/* ================================
   SECTION TÉMOIGNAGES
================================ */
.section-testimonials {
  background: var(--white);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin: var(--spacing-xl) 0;
}

.testimonials-track {
  display: flex;
  gap: var(--spacing-md);
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--gray-100);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - var(--spacing-md) / 2);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - var(--spacing-md) * 2 / 3);
  }
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.testimonials-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--gray-200);
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-stars {
  color: #ffc107;
  font-size: 1.2rem;
}

/* ================================
   SECTION FAQ & CONTACT
================================ */
.section-faq-contact {
  background: var(--light);
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

@media (min-width: 992px) {
  .faq-contact-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.simple-list {
  margin: var(--spacing-md) 0;
}

.simple-list li {
  padding: 0.5rem 0;
}

.faq-title {
  margin: var(--spacing-lg) 0 var(--spacing-md);
  color: var(--secondary);
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--gray-100);
}

.accordion-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--secondary);
  transition: var(--transition);
}

.accordion-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.accordion-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 0 1.25rem 1rem;
  color: var(--text-light);
}

/* Contact Card */
.contact-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--secondary);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--secondary);
}

.required {
  color: #dc3545;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.1);
}

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

/* ================================
   MAP SECTION
================================ */
.section-map {
  line-height: 0;
}

.section-map iframe {
  width: 100%;
  filter: grayscale(20%);
}

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.8);
  padding-top: var(--spacing-xxl);
}

.footer-logo {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

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

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

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

.footer-title {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
}

.footer-contact li {
  padding: 0.5rem 0;
}

.footer-links li {
  padding: 0.375rem 0;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary);
}

/* ================================
   ANIMATIONS (AOS-like)
================================ */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="flip-right"] {
  transform: perspective(1000px) rotateY(-10deg);
}

[data-aos="flip-left"] {
  transform: perspective(1000px) rotateY(10deg);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ================================
   RESPONSIVE UTILITIES
================================ */
@media (max-width: 767px) {
  .hero-container {
    padding-top: var(--spacing-lg);
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .estimator-card {
    padding: var(--spacing-md);
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .tarifs-table {
    font-size: 0.85rem;
  }

  .tarifs-table th,
  .tarifs-table td {
    padding: 0.75rem 0.5rem;
  }
}
