/* Carriers Section Styles */
.carriers-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(122, 12, 37, 0.03), rgba(212, 184, 114, 0.03));
  position: relative;
}

.carriers-header {
  text-align: center;
  margin-bottom: 40px;
}

.carriers-header h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.carriers-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.carriers-header p {
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.carriers-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carriers-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
  scrollbar-width: none;  /* Hide scrollbar for Firefox */
  padding: 20px 0;
}

.carriers-carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.carrier-item {
  min-width: 180px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carrier-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.carrier-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.get-quote-container {
  text-align: center;
  margin-top: 40px;
}

.get-quote-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(122, 12, 37, 0.2);
}

.get-quote-btn i {
  margin-right: 10px;
}

.get-quote-btn:hover {
  background: #8a0e2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 12, 37, 0.3);
}

.quote-notification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-notification.active {
  opacity: 1;
  visibility: visible;
}

.notification-content {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.quote-notification.active .notification-content {
  transform: translateY(0);
}

.notification-content i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.notification-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #333;
}

.close-notification {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.close-notification:hover {
  background: #8a0e2a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carrier-item {
    min-width: 150px;
    height: 80px;
  }
  
  .carrier-item img {
    max-height: 50px;
  }
}
