/* Sticky Header - AGC Toiture */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #1F2631;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-header.visible {
  transform: translateY(0);
}

.sticky-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
}

.sticky-logo img {
  height: 35px;
  width: auto;
}

.sticky-reviews {
  flex-shrink: 0;
}

.sticky-badge {
  color: #FFD700;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.sticky-badge:hover {
  color: #FFE44D;
  text-decoration: none;
}

.sticky-badge span {
  color: #ccc;
  font-weight: 400;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sticky-phone {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.sticky-phone:hover {
  color: #2778EE;
  text-decoration: none;
}

.sticky-cta {
  display: inline-block;
  background-color: #DD6D45;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.sticky-cta:hover {
  background-color: #c45a36;
  color: #fff;
  text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .sticky-logo,
  .sticky-reviews {
    display: none;
  }

  .sticky-header-inner {
    justify-content: center;
    padding: 8px 15px;
  }

  .sticky-actions {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .sticky-phone {
    font-size: 14px;
  }

  .sticky-cta {
    padding: 8px 16px;
    font-size: 13px;
  }
}
