/** Page import vehichule End **/
/* Présentation du Service Importation Véhicules */
.import-image {
  position: relative;
}

.import-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(244, 180, 26, 0.9);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Icônes de fonctionnalités */
.import-feature .icon-box {
  width: 45px;
  height: 45px;
  background-color: rgba(244, 180, 26, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F4B41A;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.import-feature:hover .icon-box {
  background-color: #F4B41A;
  color: #fff;
}

/* Animation légère */
.import-feature {
  transition: transform 0.3s ease;
}

.import-feature:hover {
  transform: translateY(-4px);
}
/* Présentation du Service Importation Véhicules End */
/* Ports & Provenances*/
.ports-section .section-title { font-weight:700; text-transform:uppercase; color: #333; letter-spacing:1px; }

.port-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.port-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(10,10,10,0.08);
}
.port-img {
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.port-card:hover .port-img { transform: scale(1.06); }

/* content */
.port-body { flex: 1 1 auto; }
.origin-badge {
  background: rgba(244,180,26,0.12);
  color: #c07f06;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}

/* Buttons */

.btn-outline-safari {
  border: 1px solid #F4B41A;
  color: #F4B41A;
  background: transparent;
}
.btn-outline-safari:hover { background: #F4B41A; color: #000; }

/* small responsive tweaks */
@media (max-width: 992px) {
  .port-img { height: 140px; }
}
@media (max-width: 576px) {
  .port-img { height: 120px; }
  .origin-badge { font-size: 0.7rem; padding: 4px 8px; }
}
/* Ports & Provenances End*/

/*  Assistance Douanière Section */
.customs-assist .section-title {
  color: #333;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.assist-card {
  transition: all 0.35s ease;
  border: 1px solid #f1f1f1;
}
.assist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: #F4B41A;
}

.assist-icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}
.assist-card:hover .assist-icon i {
  transform: scale(1.15);
  color: #d79b12;
}

/* Responsive */
@media (max-width: 992px) {
  .assist-card img { height: 160px; object-fit: cover; }
}
@media (max-width: 576px) {
  .assist-card { padding: 1.5rem 1rem; }
  .assist-card img { height: 140px; }
}
/*  Assistance Douanière Section */

/*  CPA / Case Study Section  */
.case-study {
  position: relative;
  overflow: hidden;
  height: 90vh;
  color: #fff;
}
.case-study .case-bg img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(70%);
}
.case-study .case-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.case-card {
  transition: all 0.3s ease;
}
.case-card:hover {
  transform: translateY(-5px);
  background-color: rgba(244, 180, 26, 0.1);
  border-color: #F4B41A;
}

.section-title {
  letter-spacing: 2px;
  color: #F4B41A;
}

/* Responsive */
@media (max-width: 992px) {
  .case-study {
    height: auto;
    padding: 80px 0;
  }
  .case-card {
    background-color: rgba(0,0,0,0.6);
  }
}
/*  CPA / Case Study Section  End*/
/** Page import vehichule End **/